home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 7 / Amiga Format AFCD07 (Dec 1996, Issue 91).iso / serious / shareware / comms / internet / mail-related / voodoo / rexx / sendvoodoo.bed < prev    next >
Text File  |  1996-03-11  |  351b  |  17 lines

  1. /*
  2.  * Deliver message when using Blacks Editor as an external
  3.  * editor for Voodoo.
  4.  *
  5.  */
  6.  
  7. options results
  8.  
  9. SaveFile QUIET NOBACKUP NOICON        /* Save message */
  10.  
  11. GetFilePath FILE            /* Get filename only */
  12. message="T:"result            /* Attach T: as path to filename */
  13.  
  14. address VOODOO 'SEND' message        /* Send to Voodoo */
  15. Quit QUIET                /* Quit out of BED */
  16.  
  17.